home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Development / BBEdit 8.2.1 demo.dmg / BBEdit.app / Contents / Resources / Default Support Folder / HTML Templates / Simple Page.tmpl < prev    next >
Encoding:
Text File  |  2005-05-10  |  1.5 KB  |  53 lines

  1. <!--
  2.     This is a very simple example page: it consists of a heading, followed
  3.     by a a couple of links to another pages. However, it shows off some
  4.     interesting ideas, such as the "on the fly" interpretation of special
  5.     sequences of characters.
  6. -->
  7.  
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  9.         "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
  10. <html>
  11. <head>
  12.  
  13. <!--
  14.     When creating a page from this template, the "USERNAME" string will
  15.     be replaced with the user name that you entered in the "Sharing Setup"
  16.     control panel.
  17. -->
  18.  
  19. <title>#USERNAME#'s First Page</title>
  20.  
  21.  
  22. </head>
  23. <body>
  24.  
  25. <h1>#USERNAME#'s First Page</h1>
  26. <p>
  27. This example was <a href="http://www.barebones.com/products/bbedit/builtwith.html">Built With BBEdit</a>.<br>
  28. To find out more about BBEdit, <a href="http://www.barebones.com">visit Bare Bones Software's Web site</a>.
  29. </p>
  30.  
  31. <!--
  32.     It's customary to separate version and credit information from the rest of
  33.     the page's content by using a horizontal rule, so we do that here.
  34. -->
  35.  
  36. <hr noshade size="1" align="left" width="90%">
  37.  
  38.  
  39. Created by #USERNAME# on #LONGDATE#.
  40.  
  41. <!--
  42.     This email link will get your email address from the "Email" section
  43.     of the Internet Config settings, and replace the "IC_EMAIL" with that
  44.     address. Notice that the substitution is done twice here: once for the
  45.     anchor link, and again for the visible content.
  46. -->
  47.  
  48. <br>
  49. For more information, please <a href="mailto:webmaster@example.com">send mail to webmaster@example.com</a>.
  50.  
  51. </body>
  52. </html>
  53.